@import url('https://fonts.googleapis.com/css2?family=Praise&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

body{
    background-color: #3a4c7e;
}
*{
    box-sizing: border-box;
    margin: 0px;
    padding: 5px 5px;
}
li, a, button{
    font-family: "libertinus mono", monospace;
    font-weight: 500px;
    font-size: 1.5vw;
    color: #fff5d9;
    text-decoration: none;
} 
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo {
    max-width: 200px;
    cursor: pointer;
    margin-right: auto;
}
.nav__links{
    list-style: none;
}
.nav__links li {
    display: inline-block;
    padding: 0px 20px;
}
.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover  {
    transition: all 0.3s ease 0s;
    color: #e07715;
} 
button {
    padding: 1% 0.5%;
    background-color: #fff5d9;
    color: #3a4c7e;
    border: none; 
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease 0s;;
}
button:hover {
    background-color: #fff5d98a;
    color: #3a4c7ebd;  
}
h1{
    text-align: center;
    font-size: 5.0vw;
    font-family: "courgette";
    color: #fff5d9;
}
h5 {
    text-align: center;
    font-size: 3.0vw;
    font-family: "courgette";
    color: #fff5d9;
}
.wrapper {
    text-align: center;
}
p {
    text-align: left;
    margin-top: 20px;
    padding: 10px;
    font-size: 1,5vw;
    font-family: "libertinus mono";
    color: #fff5d9;
}
.service-sec {
    display: inline-block;
    vertical-align: top;
    padding: 10px;
    margin-right: -4px;
    width: 425px;
}
footer{
    text-align: start;
    background-color: #3a4c7e;
    position: fixed;
    display: flex;
    bottom: 0;
    width: 100vw;
    font-size: 3vw;
    color: #fff5d9;
}
